/* barlow-regular - latin */
@font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/barlow-v12-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/barlow-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg'); /* Legacy iOS */
  }
  /* barlow-italic - latin */
  @font-face {
    font-family: 'Barlow';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/barlow-v12-latin-italic.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/barlow-v12-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/barlow-v12-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/barlow-v12-latin-italic.woff') format('woff'), /* Modern Browsers */
         url('../fonts/barlow-v12-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/barlow-v12-latin-italic.svg#Barlow') format('svg'); /* Legacy iOS */
  }
  /* barlow-500 - latin */
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/barlow-v12-latin-500.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/barlow-v12-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/barlow-v12-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/barlow-v12-latin-500.woff') format('woff'), /* Modern Browsers */
         url('../fonts/barlow-v12-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/barlow-v12-latin-500.svg#Barlow') format('svg'); /* Legacy iOS */
  }


:root{
    --primary-color: #1a5d3b;
    --secondary-color: #2d8f47;
    --accent-color: #7cb342;
    --light-accent-color: #a5d462;
    --light-primary-color: #f5f7f5;
    --light-secondary-color: #ffffff;
    --primary-text-color: #2c2c2c;
    --secondary-text-color: #4a4a4a;
    --card-shadow: rgba(26, 93, 59, 0.15);
    --hover-shadow: rgba(26, 93, 59, 0.25);
    --border-color: rgba(124, 179, 66, 0.2);
    --border-hover: rgba(124, 179, 66, 0.4);
}

*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    
}


body{
    min-height: 100vh;
    background-color: var(--light-primary-color);
    font-family: 'Barlow';
    font-size: 20px;

    
    


}


.section_global{
    padding-left: 20%;
    padding-right: 20%;
}




h2{
    padding-bottom: 50px;
    padding-top: 20px;
}


